home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / graphic / postogrf.zip / LIPSFONT.PAS < prev    next >
Pascal/Delphi Source File  |  1989-06-06  |  395b  |  17 lines

  1. { LIPSFONT - modelled on Borland's FONTS.PAS}
  2.  
  3. unit LipsFont;
  4. { This unit links the SANS BGI graphics font into a single TPU file.
  5.    This makes it easy to incorporate the font files directly into a
  6.    .EXE file. See Borland's GRLINK.PAS for more information.
  7. }
  8. interface
  9.  
  10. procedure SansSerifFontProc;
  11.  
  12. implementation
  13.  
  14. procedure SansSerifFontProc; external;
  15. {$L SANS.OBJ }
  16. end.
  17.